home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 June
/
ccd0605.iso
/
Software
/
Freeware
/
Programare
/
highlight
/
highlight-W32GUI-2.2-10b-Setup.exe
/
{app}
/
src
/
directoryreader.h
< prev
next >
Wrap
C/C++ Source or Header
|
2003-07-17
|
1KB
|
43 lines
/***************************************************************************
directoryreader.h - description
-------------------
begin : Son Nov 10 2002
copyright : (C) 2002 by AndrΘ Simon
email : andre.simon1@gmx.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef DIRECTORYREADER_H
#define DIRECTORYREADER_H
#include <string>
#include <vector>
/**enthΣlt Methoden zum Auslesen von Verzeichnisinhalten
*@author AndrΘ Simon
*/
using namespace std;
//typedef std::set
//<string>::iterator FileNameIterator;
class DirectoryReader
{
public:
DirectoryReader();
~DirectoryReader();
static bool getEntries(vector<string> &fileList, string wildcard,bool recursiveSearch=false) ;
};
#endif